Finding ID | Version | Rule ID | IA Controls | Severity |
---|---|---|---|---|
RHEL-06-000199 | RHEL-06-000199 | RHEL-06-000199_rule | Low |
Description |
---|
The unauthorized exportation of data to external media could result in an information leak where classified information, Privacy Act information, and intellectual property could be lost. An audit trail should be created each time a filesystem is mounted to help identify and guard against information loss. |
STIG | Date |
---|---|
Red Hat Enterprise Linux 6 Security Technical Implementation Guide | 2013-02-05 |
Check Text ( C-RHEL-06-000199_chk ) |
---|
To verify that auditing is configured for all media exportation events, run the following command: # auditctl -l | grep syscall | grep mount If there is no output, this is a finding. |
Fix Text (F-RHEL-06-000199_fix) |
---|
At a minimum the audit system should collect media exportation events for all users and root. Add the following to "/etc/audit/audit.rules", setting ARCH to either b32 or b64 as appropriate for your system: -a always,exit -F arch=ARCH -S mount -F auid>=500 -F auid!=4294967295 -k export |